Reduced logging level of some mock camera notices
This commit is contained in:
parent
4d1d0a15c4
commit
8eff136cc3
1 changed files with 3 additions and 3 deletions
|
|
@ -178,7 +178,7 @@ class MissingCamera(BaseCamera):
|
||||||
"""
|
"""
|
||||||
Change the camera zoom, handling re-centering and scaling.
|
Change the camera zoom, handling re-centering and scaling.
|
||||||
"""
|
"""
|
||||||
logging.warning("Zoom not implemented in mock camera")
|
logging.info("Zoom not implemented in mock camera")
|
||||||
|
|
||||||
def start_stream(self):
|
def start_stream(self):
|
||||||
pass
|
pass
|
||||||
|
|
@ -188,11 +188,11 @@ class MissingCamera(BaseCamera):
|
||||||
|
|
||||||
def start_preview(self, *_, **__):
|
def start_preview(self, *_, **__):
|
||||||
"""Start the on board GPU camera preview."""
|
"""Start the on board GPU camera preview."""
|
||||||
logging.warning("GPU preview not implemented in mock camera")
|
logging.info("GPU preview not implemented in mock camera")
|
||||||
|
|
||||||
def stop_preview(self):
|
def stop_preview(self):
|
||||||
"""Stop the on board GPU camera preview."""
|
"""Stop the on board GPU camera preview."""
|
||||||
logging.warning("GPU preview not implemented in mock camera")
|
logging.info("GPU preview not implemented in mock camera")
|
||||||
|
|
||||||
def start_recording(self, *_, **__):
|
def start_recording(self, *_, **__):
|
||||||
"""Start recording.
|
"""Start recording.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue