Beriol
Beriol

Reputation: 656

Android 14: logcat displays only "Telecom" tag

I'm having a weird issue I cannot figure out.

I recently bought a new phone (Nubia RedMagic 9 Pro, with Android 14) and I cannot make logcat work properly with it.

By running adb logcat all I see are entries related to Telecom:

05-30 17:51:48.068  2699  3607 D Telecom : Logging: START_SESSION
05-30 17:51:48.068  2699  3607 D Telecom : Logging: END_SESSION (dur: 0 ms): TSI.iIC(a)@Bxg
05-30 17:51:48.729  2699  3608 D Telecom : Logging: START_SESSION
05-30 17:51:48.729  2699  3608 D Telecom : Logging: END_SESSION (dur: 0 ms): TSI.iIC(a)@Bxk
05-30 17:51:48.735  2699  3608 D Telecom : Logging: START_SESSION
05-30 17:51:48.735  2699  3608 D Telecom : Logging: END_SESSION (dur: 0 ms): TSI.iIC(a)@Bxo
05-30 17:52:03.849  2699  2699 D Telecom : Logging: START_SESSION
05-30 17:52:03.849  2699  2699 D Telecom : Logging: END_SESSION (dur: 0 ms): TSI.iIMC(a)@Bxs
05-30 17:52:03.849  2699  2699 D Telecom : Logging: START_SESSION
05-30 17:52:03.850  2699  2699 D Telecom : Logging: END_SESSION (dur: 0 ms): TSI.iISMC(a)@Bxw
05-30 17:52:03.857  2699  2699 D Telecom : Logging: START_SESSION
05-30 17:52:03.858  2699  2699 D Telecom : Logging: END_SESSION (dur: 0 ms): TSI.iIMC(a)@Bx0
05-30 17:52:03.858  2699  2699 D Telecom : Logging: START_SESSION
05-30 17:52:03.859  2699  2699 D Telecom : Logging: END_SESSION (dur: 0 ms): TSI.iISMC(a)@Bx4
05-30 17:52:03.951  2699  2699 D Telecom : Logging: START_SESSION
05-30 17:52:03.952  2699  2699 D Telecom : Logging: END_SESSION (dur: 0 ms): TSI.iIMC(a)@Bx8
05-30 17:52:03.953  2699  2699 D Telecom : Logging: START_SESSION
05-30 17:52:03.953  2699  2699 D Telecom : Logging: END_SESSION (dur: 0 ms): TSI.iISMC(a)@ByA
...

What I tried:

Nothing seems to work. I checked the Developer options for the device and I made sure that I have these enabled:

I would like to know if someone might know the cause (in case it's a known issue), before reaching out to the manufacturer for support

Upvotes: 1

Views: 407

Answers (1)

Umy
Umy

Reputation: 573

There is a solution for ZTE Nubia / Red Magic phones with Android 14!

Method 1: run adb shell setprop log.tag I (effective until reboot)

Method 2: Device settings ==》About phone ==》Feedback ==》Click the settings button at the top right corner ==》"Log always on"

Personally, my device didn't have "Feedback" option, maybe it will appear with updates or only available in the Chinese version, but the adb method works great!

Upvotes: 2

Related Questions