3
3

More than 5 years have passed since last update.

TitaniumMobileSDKのログ出力と色分け

Last updated at Posted at 2013-05-17

デバイス

adb -d logcat -v time TiAPI:I *:S | perl -pe's| D\/.*$|\e[35m$&\e[0m|g;s| I\/.*$|\e[36m$&\e[0m|g;s| W\/.*$|\e[33m$&\e[0m|g;s| E\/.*$|\e[31m$&\e[0m|g;'

エミュレーター

adb -e logcat -v time TiAPI:I *:S | perl -pe's| D\/.*$|\e[35m$&\e[0m|g;s| I\/.*$|\e[36m$&\e[0m|g;s| W\/.*$|\e[33m$&\e[0m|g;s| E\/.*$|\e[31m$&\e[0m|g;'

VMWare上のエミュレーターとか

adb -s [IP Address]:[Port] logcat -v time TiAPI:I *:S | perl -pe's| D\/.*$|\e[35m$&\e[0m|g;s| I\/.*$|\e[36m$&\e[0m|g;s| W\/.*$|\e[33m$&\e[0m|g;s| E\/.*$|\e[31m$&\e[0m|g;'
3
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
3