Skip to content

Commit

Permalink
v1.17.2
Browse files Browse the repository at this point in the history
version 1.17.2
  • Loading branch information
thusser authored Sep 12, 2024
2 parents 7e9577d + 25dcd2b commit 3a408bc
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pyobs/background_task.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def _callback_function(self, args=None) -> None:
if isinstance(exception, SevereError):
raise exception
elif exception is not None:
log.error("Exception %s in task %s.", exception, self._func.__name__)
log.exception("Exception in task %s.", self._func.__name__)

if self._restart:
log.error("Background task for %s has died, restarting...", self._func.__name__)
Expand Down
2 changes: 0 additions & 2 deletions pyobs/mixins/motionstatus.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ async def _change_motion_status(self, status: MotionStatus, interface: Optional[
# log and set it
changed = True
self.__motion_status = status
log.info("Changed motion status to %s.", status)

# also set all individual interfaces
for i in self.__motion_status_interfaces:
Expand All @@ -64,7 +63,6 @@ async def _change_motion_status(self, status: MotionStatus, interface: Optional[
# set it
self.__motion_status_single[interface] = status
changed = True
log.info("Changed motion status for interface %s to %s.", interface, status)

# combine status
self.__motion_status = self._combine_motion_status()
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tool.poetry]
name = "pyobs-core"
packages = [{ include = "pyobs" }]
version = "1.17.1"
version = "1.17.2"
description = "robotic telescope software"
authors = ["Tim-Oliver Husser <[email protected]>"]
license = "MIT"
Expand Down

0 comments on commit 3a408bc

Please sign in to comment.