test: set DEFMT_LOG not too verbose so net perf tests pass with cargo run.

This commit is contained in:
Dario Nieuwenhuis 2023-09-28 03:45:52 +02:00
parent 901f0257bd
commit 3d1b4116ec
3 changed files with 7 additions and 4 deletions

View file

@ -6,4 +6,4 @@ runner = "teleprobe client run"
target = "thumbv7em-none-eabi" target = "thumbv7em-none-eabi"
[env] [env]
DEFMT_LOG = "trace" DEFMT_LOG = "trace,embassy_hal_internal=debug,embassy_net_esp_hosted=debug,smoltcp=info"

View file

@ -19,4 +19,4 @@ rustflags = [
target = "thumbv6m-none-eabi" target = "thumbv6m-none-eabi"
[env] [env]
DEFMT_LOG = "trace" DEFMT_LOG = "trace,embassy_hal_internal=debug,embassy_net_esp_hosted=debug,cyw43=info,cyw43_pio=info,smoltcp=info"

View file

@ -14,7 +14,10 @@ rustflags = [
] ]
[build] [build]
target = "thumbv7m-none-eabi" target = "thumbv6m-none-eabi"
#target = "thumbv7m-none-eabi"
#target = "thumbv7em-none-eabi"
#target = "thumbv8m.main-none-eabihf"
[env] [env]
DEFMT_LOG = "trace" DEFMT_LOG = "trace,embassy_hal_internal=debug,embassy_net_esp_hosted=debug,smoltcp=info"