added log Timestamps (#42)
Generate and publish developer Wiki / publish-wiki (push) Canceled after 0s
Generate and publish developer Wiki / validate-wiki (push) Canceled after 9s
Build and publish release / create-release (push) Canceled after 0s
Build and publish release / build (push) Canceled after 0s
Build and publish release / publish-release (push) Canceled after 0s
Build and publish release / metadata (push) Canceled after 10s

Reviewed-on: #42
Co-authored-by: Koda YeenBean <n122330@gmail.com>
This commit was merged in pull request #42.
This commit is contained in:
2026-08-07 14:55:38 +01:00
committed by Koda
parent 308803053c
commit c7687fd35d
12 changed files with 110 additions and 83 deletions
+2 -2
View File
@@ -262,8 +262,8 @@ int wlan_apply_system_cfg(const char *system_cfg,
json_object_object_add(root, "radio_table", radios);
json_object_object_add(root, "vap_table", vaps);
printf("[openuf] Parsed legacy system_cfg: %zu radios, %zu VAPs\n",
json_object_array_length(radios), json_object_array_length(vaps));
LOGF(stdout, "Parsed legacy system_cfg: %zu radios, %zu VAPs",
json_object_array_length(radios), json_object_array_length(vaps));
int result = wlan_apply_config(root, model);
json_object_put(root);
return result;