April 6, 2026
11:24 a.m.
Mirror Wine debug output to Android logcat on Android builds. Android is effectively an embedded platform and does not provide a convenient standard stdout/stderr workflow. Capturing debug output by redirecting it to a file is also awkward in practice, while logcat provides a straightforward way to inspect live logs on-device. Load `__android_log_print` from liblog in `dbg_init()` and emit debug output through the `WineOut` tag while preserving the existing stderr path. For cases where file logging is preferred, Wine already provides a separate mechanism to set `WINEDEBUG` and redirect the output to a file. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/10574