Intuity / forastero

Making cocotb testbenches that bit easier
http://forastero.intuity.io/
Apache License 2.0
24 stars 1 forks source link

Hierarchical logging #10

Closed Intuity closed 7 months ago

Intuity commented 7 months ago

This PR adds support for hierarchical logging contexts:

NOTE This is a breaking change because test cases will now be provided with a new second argument of log, which is a context-specific logging instance - e.g.:

@Testbench.testcase()
async def my_testcase(tb, log):
    log.info("HELLO!")