klippy_apis: add print/job request logging

Signed-off-by:  Eric Callahan <arksine.code@gmail.com>
This commit is contained in:
Eric Callahan 2024-04-24 07:22:19 -04:00
parent 5a60d64f04
commit 2bf6d609cb
No known key found for this signature in database
GPG Key ID: 5A1EB336DFB4C71B
1 changed files with 5 additions and 0 deletions

View File

@ -5,6 +5,7 @@
# This file may be distributed under the terms of the GNU GPLv3 license. # This file may be distributed under the terms of the GNU GPLv3 license.
from __future__ import annotations from __future__ import annotations
import logging
from ..utils import Sentinel from ..utils import Sentinel
from ..common import WebRequest, APITransport, RequestType from ..common import WebRequest, APITransport, RequestType
@ -137,12 +138,14 @@ class KlippyAPI(APITransport):
script = f'SDCARD_PRINT_FILE FILENAME="{filename}"' script = f'SDCARD_PRINT_FILE FILENAME="{filename}"'
if wait_klippy_started: if wait_klippy_started:
await self.klippy.wait_started() await self.klippy.wait_started()
logging.info(f"Requesting Job Start, filename = {filename}")
return await self.run_gcode(script) return await self.run_gcode(script)
async def pause_print( async def pause_print(
self, default: Union[Sentinel, _T] = Sentinel.MISSING self, default: Union[Sentinel, _T] = Sentinel.MISSING
) -> Union[_T, str]: ) -> Union[_T, str]:
self.server.send_event("klippy_apis:pause_requested") self.server.send_event("klippy_apis:pause_requested")
logging.info("Requesting job pause...")
return await self._send_klippy_request( return await self._send_klippy_request(
"pause_resume/pause", {}, default) "pause_resume/pause", {}, default)
@ -150,6 +153,7 @@ class KlippyAPI(APITransport):
self, default: Union[Sentinel, _T] = Sentinel.MISSING self, default: Union[Sentinel, _T] = Sentinel.MISSING
) -> Union[_T, str]: ) -> Union[_T, str]:
self.server.send_event("klippy_apis:resume_requested") self.server.send_event("klippy_apis:resume_requested")
logging.info("Requesting job resume...")
return await self._send_klippy_request( return await self._send_klippy_request(
"pause_resume/resume", {}, default) "pause_resume/resume", {}, default)
@ -157,6 +161,7 @@ class KlippyAPI(APITransport):
self, default: Union[Sentinel, _T] = Sentinel.MISSING self, default: Union[Sentinel, _T] = Sentinel.MISSING
) -> Union[_T, str]: ) -> Union[_T, str]:
self.server.send_event("klippy_apis:cancel_requested") self.server.send_event("klippy_apis:cancel_requested")
logging.info("Requesting job cancel...")
return await self._send_klippy_request( return await self._send_klippy_request(
"pause_resume/cancel", {}, default) "pause_resume/cancel", {}, default)