-
Notifications
You must be signed in to change notification settings - Fork 24
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Suppress chain related logs #48
Comments
This messy logging output consists of interleaved:
In 1) we probably simply want to remove Log from 2) is a result of a Edit: new process is created deep down in cardano codebase (probably here directly) |
Okey right, there is also chain-index as a third source of logging. Let me show you what I did so far. I pr'ed a hack here where we:
One can inspect "node_configuration.log" file by setting environment variable "NO_CLEANUP" to leave tmp dir unremoved. Though with this fix the function As for the chain-index: Should I pr plutus-apps and add verbose flag to chain-index? This would remove the third source of unwanted logs. I've tried quickly running chain-index with |
IntersectMBO/plutus-apps#401 is merged, but updating |
Should be fixed by #73 |
Fixed by #73 |
cardano-node and chain-index runs in a separate process and has access to stdout, printing out logs to the screen, polluting the test results. Ideally, we would use a
verbose
flag, or log levels to control this.The text was updated successfully, but these errors were encountered: