Is there a way to capture logs without silencing exceptions?
In my test framework I would like to cut out the clutter that results from Prints/Writes/handled exceptions from my output file, so I tried executing test code inside of a Log Capture( Eval( testExpression ) ). My problem is that this seems to also silence any exceptions that get thrown when evaluating the testExpression, which I did not expect. As an example:Try(
logs = Log Capture(
Throw( "n
...