I run StartAsyncSerialServer from pymodbus and get a lot of debug output into my logfiles like:
>>>>> recv: 0x11 0xc1 extra data: 0xfd 0xed 0xff 0x13 0x24 0x44 0x64 0xeb 0xa
>>>>> extra: unexpected data: 0xfd 0xed 0xff 0x13 0x24 0x44 0x64 0xeb 0xa 0x11 0xc1
>>>>> recv: 0x29 extra data: 0xfd 0xed 0xff 0x13 0x24 0x44 0x64 0xeb 0xa 0x11 0xc1
>>>>> extra: unexpected data: 0xfd 0xed 0xff 0x13 0x24 0x44 0x64 0xeb 0xa 0x11 0xc1 0x29
how can I switch this off? I already tried to set debug in:
asyncio.run(async_helper(), debug=None)
but with no effect.