Commit c3278004 authored by Ivan Tyagov's avatar Ivan Tyagov

Be more verbose when logging.

parent 613205dc
...@@ -22,7 +22,7 @@ import time ...@@ -22,7 +22,7 @@ import time
SLEEP_DURATION = 10e-3 # 10 milliseconds SLEEP_DURATION = 10e-3 # 10 milliseconds
# algorith defaults # algorithm defaults
DEFAULT_LH = (0, 180,) DEFAULT_LH = (0, 180,)
DEFAULT_LS = (0, 255,) DEFAULT_LS = (0, 255,)
DEFAULT_LV = (0, 255,) DEFAULT_LV = (0, 255,)
...@@ -195,5 +195,5 @@ async def main(): ...@@ -195,5 +195,5 @@ async def main():
break break
if __name__ == "__main__": if __name__ == "__main__":
logging.basicConfig(level=logging.ERROR) logging.basicConfig(level=logging.INFO)
asyncio.run(main(), debug=True) asyncio.run(main(), debug=True)
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment