mirror of
https://github.com/status-im/status-mobile.git
synced 2025-01-13 18:25:45 +00:00
chore_: add make targets for tail/pull geth.log
This commit is contained in:
parent
141252e5a0
commit
1cc4807336
10
Makefile
10
Makefile
@ -447,6 +447,16 @@ android-devices: export TARGET := android-sdk
|
|||||||
android-devices: ##@other Invoke adb devices
|
android-devices: ##@other Invoke adb devices
|
||||||
adb devices
|
adb devices
|
||||||
|
|
||||||
|
android-pull-geth: export TARGET := android-sdk
|
||||||
|
android-pull-geth: export VERSION ?= debug
|
||||||
|
android-pull-geth:
|
||||||
|
adb pull "/storage/emulated/0/Android/data/im.status.ethereum$$( [ "$(VERSION)" = "release" ] || echo ".$(VERSION)" )/files/Download/geth.log"
|
||||||
|
|
||||||
|
android-tail-geth: export TARGET := android-sdk
|
||||||
|
android-tail-geth: export VERSION ?= debug
|
||||||
|
android-tail-geth:
|
||||||
|
adb shell 'while true; do cat; sleep 1; done < /storage/emulated/0/Android/data/im.status.ethereum$$( [ "$(VERSION)" = "release" ] || echo ".$(VERSION)" )/files/Download/geth.log'
|
||||||
|
|
||||||
android-logcat: export TARGET := android-sdk
|
android-logcat: export TARGET := android-sdk
|
||||||
android-logcat: ##@other Read status-mobile logs from Android phone using adb
|
android-logcat: ##@other Read status-mobile logs from Android phone using adb
|
||||||
adb logcat | grep -e RNBootstrap -e ReactNativeJS -e ReactNative -e StatusModule -e StatusNativeLogs -e 'F DEBUG :' -e 'Go :' -e 'GoLog :' -e 'libc :'
|
adb logcat | grep -e RNBootstrap -e ReactNativeJS -e ReactNative -e StatusModule -e StatusNativeLogs -e 'F DEBUG :' -e 'Go :' -e 'GoLog :' -e 'libc :'
|
||||||
|
Loading…
x
Reference in New Issue
Block a user