Skip to content

Commit

Permalink
Change some warnings to info
Browse files Browse the repository at this point in the history
  • Loading branch information
albireox committed Aug 23, 2023
1 parent 79040d7 commit 3b2d597
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/lvmecp/actor/commands/dome.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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)
Expand Down

0 comments on commit 3b2d597

Please sign in to comment.