alexforencich/cocotbext-axi

Logging TX frame and RX frame

Lockedloop opened this issue · 2 comments

Logging TX frames and RX frames in axis.py would be much nicer using self.log.debug instead of self.log.info.

Hello,
You can set up the required level of logging in particular class with something like:

import logging
axis_sink.log.setLevel(logging.WARNING)

Of course, this line also block the other INFO messages, but still.

Thanks for the reply, this helps.