I prefer using my on text editor with Gideros so I use gdrbridge to run Gideros Player from the command line. There's a command called getlog which outputs the log at that time, but this is not live debug like on Gideros Studio. Is there any way to get live debug log from the terminal?
Comments
I have script that collects the log:
while true; do gdrbridge getlog > /tmp/gideros.log; done
Then a script that tails it:
tail -f /tmp/gideros.log
Likes: ar2rsawseen, ianchia