Is there a way to view realtime log output for your app running on the CoronaViewer? That is filtered so you only see the Corona log (and not other log lines from the IOS device itself)
here’s the answer
http://pervasivecode.blogspot.co.uk/2012/06/view-log-output-of-any-app-on-iphone-or.html
Plus this helps too:
idevicesyslog | awk -F'appNameThatAppearsInLog\[[0-9]+\] \*' '/appNameThatAppearsInLog\[[0-9]+\]/{print $2}'
or for Corona Viewer:
idevicesyslog | awk -F'CoronaViewer\[[0-9]+\] \*' '/CoronaViewer\[[0-9]+\]/{print $2}'
here’s the answer
http://pervasivecode.blogspot.co.uk/2012/06/view-log-output-of-any-app-on-iphone-or.html
Plus this helps too:
idevicesyslog | awk -F'appNameThatAppearsInLog\[[0-9]+\] \*' '/appNameThatAppearsInLog\[[0-9]+\]/{print $2}'
or for Corona Viewer:
idevicesyslog | awk -F'CoronaViewer\[[0-9]+\] \*' '/CoronaViewer\[[0-9]+\]/{print $2}'