I'd like to get Rust-side log messages encountered...
# development
f
I'd like to get Rust-side log messages encountered during test runs where the test invokes an intrinsic rule. The log messages themselves are from a related component. Where do these end up when the engine is invoked in a pytest subporcess? Having read through the code enough to tacitly start to see how the Rust<->Python logging divide is bridged, it remains unclear to me why log messages from the test-invoked rules seems to go to the great bit bucket.
I verified that the Rust side code with the log message was at least invoked by having it return an error when it observed certain data passed in from the test.
And that error does make its way back to the test.
resorting to a Rust macro which writes to a file on disk. Not exactly ergonomic development. <sigh>