move logging around to make output a little cleaner

This commit is contained in:
Paul Dino Jones
2025-01-16 22:22:49 -05:00
parent 13d7a03acb
commit 0a498f0c64
+2 -2
View File
@@ -537,9 +537,9 @@ void cb(uv_poll_t* handle, int status, int events)
if(f->releasing == false && doui == false) if(f->releasing == false && doui == false)
{ {
appstate--; appstate--;
slogi("User requested stop appstate is now %i", appstate); fprintf(stdout, "\nUser requested stop appstate is now %i\n", appstate);
fprintf(stdout, "User requested stop appstate is now %i\n", appstate);
fflush(stdout); fflush(stdout);
slogi("User requested stop appstate is now %i", appstate);
} }
} }