adds comment on how to enable logging in integration test executable itself

This commit is contained in:
Marcin Czenko 2024-10-14 02:34:09 +02:00
parent cc33355361
commit 77d67134fe
No known key found for this signature in database
GPG Key ID: 33DEA0C8E30937C0
1 changed files with 3 additions and 0 deletions

View File

@ -41,6 +41,9 @@ task testContracts, "Build & run Codex Contract tests":
task testIntegration, "Run integration tests":
buildBinary "codex", params = "-d:chronicles_runtime_filtering -d:chronicles_log_level=TRACE -d:codex_enable_proof_failures=true"
test "testIntegration"
# use params to enable logging from the integration test executable
# test "testIntegration", params = "-d:chronicles_sinks=textlines[notimestamps,stdout],textlines[dynamic] " &
# "-d:chronicles_enabled_topics:integration:TRACE"
task build, "build codex binary":
codexTask()