Details
-
Type:
Bug
-
Status: Closed
-
Priority:
P3: Somewhat important
-
Resolution: Done
-
Affects Version/s: 6.0.0
-
Fix Version/s: 6.2.0 Beta1, 6.3.0 Alpha
-
Component/s: Extras: Android
-
Labels:None
-
Platform/s:
-
Commits:87d8ee755bfdef8e72a122789c2e3ed382881a12 (qt/qtbase/dev) eb4b6e8f3574296e1f864fc7a5dfdef147bc5839 (qt/qtbase/6.2)
Description
Currently, macros like qCDebug(someCategory) prints the log into Android's logical in the form of:
D [libName.so]: [someCategory]: [rest of the message]
When providing a category it is more correct to use that category as the tag instead which would save users from having to call __android_log_print() manually to get the following outcome:
D [someCategory]: [rest of the message]
which would act the same way as calling this from Java:
Log.d(TAG, message);