pypot
pypot copied to clipboard
Comportment of logger WARNING for pypot.dynamixel.error
Pypot is flooding logs outputs with Timeout error (at 50Hz). This can cause creation of big files, or filling all the available RAM... A solution could be to implement an handler on WARNING output, to summarize the outputs.
+1
It is not advised, but you can hide the warning logs with this following code:
import logging
dynamixel_logger = logging.getLogger('pypot.dynamixel.error')
dynamixel_logger.setLevel(logging.ERROR)