I am using ADB and specifically logcat to capture logs from a real android device. During an incoming call, the caller's number is partially hidden. With what it can be connected? Is there a way to see it in full using ADB?
Asked
Active
Viewed 124 times
0
-
For example: I/Telecom:SamsungTPhoneCallInfo: updateRelaxMode isSktTPhoneMode : false phoneNumber :+79******797 – Den Nov 21 '21 at 17:19
-
maybe it has been partially hidden because of privacy and security reasons... – Lino Nov 22 '21 at 14:35
-
Yeah, for sure. I think by default the device hides the number sent to the log. But maybe it can be changed somewhere in the settings? We checked it on another device in another country - the result is the same. – Den Nov 23 '21 at 05:16
1 Answers
0
That's for sure intentional and cannot be changed. Private data should not be visible in logs!
If your goal is to access specific phone events: don't use logcat. Access it via Tasker app or similar setup (through normal network connection, not USB).

allofmex
- 557
- 1
- 4
- 16
-
It's amazing that a similar utility for IOS works flawlessly, giving the incoming numbers in full ... – Den Nov 25 '21 at 19:46