diff options
| author | Paul Oliver <contact@pauloliver.dev> | 2026-05-25 21:36:50 +0200 |
|---|---|---|
| committer | Paul Oliver <contact@pauloliver.dev> | 2026-05-25 21:38:20 +0200 |
| commit | bace2d7f20acc609d552a80bb018939d5e8afab8 (patch) | |
| tree | 0525710979c3342a2ed74fc675c192cb9b0c7870 /ui/daemon | |
| parent | 54342ed0cc61585d953183ec29309eb0db846b72 (diff) | |
Save file compression and data aggregation always enabled
Diffstat (limited to 'ui/daemon')
| -rw-r--r-- | ui/daemon/ui.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ui/daemon/ui.c b/ui/daemon/ui.c index cec3296..93f088f 100644 --- a/ui/daemon/ui.c +++ b/ui/daemon/ui.c @@ -7,7 +7,7 @@ void sig_handler(int signo) { (void)signo; if (g_running) { - g_warn("Signal received, will stop simulator soon..."); + log_warn("Signal received, will stop simulator soon..."); g_running = false; } } @@ -28,7 +28,7 @@ void step_block(void) { float secs = (float)(end - beg) / (float)CLOCKS_PER_SEC; float steps_per_sec = (float)g_step_block / secs; - g_info("Simulator running on step %#lx @%.1f steps/s", g_steps, steps_per_sec); + log_info("Simulator running on step %#lx @%.1f steps/s", g_steps, steps_per_sec); } int main(void) { @@ -48,10 +48,10 @@ int main(void) { step_block(); } - g_info("Saving simulation..."); + log_info("Saving simulation..."); salis_save(SIM_PATH); salis_free(); - g_info("Exiting salis..."); + log_info("Exiting salis..."); return 0; } |
