From 3b2d5976be99b9e60a713bdcf2c9d5fefffc9362 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20S=C3=A1nchez-Gallego?= Date: Wed, 23 Aug 2023 23:16:28 +0000 Subject: [PATCH] Change some warnings to info --- python/lvmecp/actor/commands/dome.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/lvmecp/actor/commands/dome.py b/python/lvmecp/actor/commands/dome.py index 7c0971c..e24385d 100644 --- a/python/lvmecp/actor/commands/dome.py +++ b/python/lvmecp/actor/commands/dome.py @@ -37,7 +37,7 @@ def dome(): async def open(command: ECPCommand, force=False): """Opens the dome.""" - command.warning("Opening dome.") + command.info("Opening dome.") try: await command.actor.plc.dome.open(force=force) @@ -52,7 +52,7 @@ async def open(command: ECPCommand, force=False): async def close(command: ECPCommand, force=False): """Closes the dome.""" - command.warning("Closing dome.") + command.info("Closing dome.") try: await command.actor.plc.dome.close(force=force)