[1mdiff --git a/src/app.c b/src/app.c[m
[1mindex 73cc35ee..f5f7ae2b 100644[m
[1m--- a/src/app.c[m
[1m+++ b/src/app.c[m
[36m@@ -71,6 +71,9 @@[m [mSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */[m
#if defined (iPlatformAppleMobile)[m
#endif[m
[32m+[m[32m#if defined (iPlatformAndroidMobile)[m
[32m+[m[32m#include <SDL_log.h>[m
[32m+[m[32m#endif[m
#if defined (iPlatformMsys)[m
#endif[m
[36m@@ -1690,13 +1693,20 @@[m [mvoid postCommand_Root(iRoot *d, const char *command) {[m
ev.user.data1 = strdup(command);[m
ev.user.data2 = d; /* all events are root-specific */[m
SDL_PushEvent(&ev);[m
[32m+[m[32m iWindow *win = get_Window();[m
[32m+[m[32m#if defined (iPlatformAndroid)[m
[32m+[m[32m SDL_LogInfo(SDL_LOG_CATEGORY_APPLICATION, "%s[command] {%d} %s",[m
[32m+[m[32m app_.isLoadingPrefs ? "[Prefs] " : "",[m
[32m+[m[32m (d == NULL || win == NULL ? 0 : d == win->roots[0] ? 1 : 2),[m
[32m+[m[32m command);[m
[32m+[m[32m#else[m
if (app_.commandEcho) {[m
[31m- iWindow *win = get_Window();[m
printf("%s[command] {%d} %s\n",[m
app_.isLoadingPrefs ? "[Prefs] " : "",[m
(d == NULL || win == NULL ? 0 : d == win->roots[0] ? 1 : 2),[m
command); fflush(stdout);[m
}[m
[32m+[m[32m#endif[m
}[m
[m
void postCommandf_Root(iRoot *d, const char *command, ...) {[m
text/plain
This content has been proxied by September (3851b).