I am trying to filter my logcat like this to only get logs from myapp.id:
adb -s emulator-5554 logcat 'myapp.id:* *:S'
It should remove all logs except those from myapp.id, but I always get: BestClock: java.time.DateTimeException: Missing network time fix If I use this command line, then BestClock is filtered as expected:
adb -s emulator-5554 logcat 'myapp.id:* BestClock:S'
Why *:S doesn't work on macos zsh ?
PS: in Android Studio, filtering is working as expected with package:mine ...