robovm / robovm-gradle-plugin

RoboVM Gradle plugin
45 stars 24 forks source link

Pipe simulator output to console #12

Closed badlogic closed 9 years ago

badlogic commented 10 years ago

Currently the plugin doesn't pipe the simulator output to the console when launched via the launchIPhoneSimulator etc. task. Since debugging is currently not supported in RoboVM, it'd be very nice to at least see the console log.

Thanks for your work on this, we libgdx folks are super happy users :)

jtakakura commented 10 years ago

I tried to get the stdout of iOS Simulator(ios-sim) process to pipe to console but some log was lost. To get all logs correctly, it need to write the log to a file(and watch logs, for example "tail -f" ).

prophile commented 9 years ago

Permit me to add another voice to this one!

ntherning commented 9 years ago

I think I've seen some output? At least when I ran gradle with debug or info logging turned on. Also, it could be buffered somehow.

ntherning commented 9 years ago

Is this still a problem? We did have some problems with ios-sim at some point when Apple did some changes in how stdout/stderr are handled.

abram commented 9 years ago

gradle -debug seems to be required to see logged output in the console when running in the simulator. (For some reason gradle -i is enough to do the trick when running on-device.)

badlogic commented 9 years ago

Closing in favor of #44