From af964bcc3734756d9d90ec06521f652a714175f9 Mon Sep 17 00:00:00 2001 From: rhetenor Date: Sun, 30 Aug 2026 08:14:20 +0000 Subject: [PATCH] default to debug log for now --- .cargo/config.toml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.cargo/config.toml b/.cargo/config.toml index a1297d5..aa24b04 100644 --- a/.cargo/config.toml +++ b/.cargo/config.toml @@ -2,13 +2,11 @@ runner = "espflash flash --monitor --chip esp32s3" [env] -ESP_LOG="info" +ESP_LOG = "debug" WM_CONN = '{"ssid": "Wokwi-GUEST", "psk": "", "data": {}}' [build] -rustflags = [ - "-C", "link-arg=-nostartfiles", -] +rustflags = ["-C", "link-arg=-nostartfiles"] target = "xtensa-esp32s3-none-elf"