0

Hi when ever i tried to use Android Debug Apk everything in my logs gets logged and everything works fine. But if i try to use my release apk i only get only the below message in the logs i have verified my debugger level and its Debug and i have changed it to verify as well but still no luck.

  1. Package wl.analytics
  2. Level Analytics
  3. Message InternalRequestSender outbound

We are using cordova-plugin-mfp: 8.0.2018090313

Server MFP: 8.0.0.00-20171220-1341

Community
  • 1
  • 1
Kawinesh S K
  • 3,148
  • 1
  • 16
  • 29

1 Answers1

0

You mention the debugger level is set to Debug. Since it is in debug mode, only with a debug mode apk you will see the logs. You should try with a different loglevel than debug, for instance INFO level. Make sure you use setLevel API explicitly and override the default with the one you want.

Alernatively you can use customData too if it is not just logging purpose.

Vivin K
  • 2,681
  • 1
  • 11
  • 14
krckumar
  • 544
  • 4
  • 21
  • hi i am even using the Set level and setting it to 'Debug' explicitly in release mode still i am not receiving the logs. we are using customData but even that it just logs some not everything – Kawinesh S K Apr 15 '19 at 08:45
  • i think i am not clear above i am getting logs in my debug Android build but not in my release build ??? – Kawinesh S K Apr 15 '19 at 08:47
  • "debug" will be visible in debug mode only. It wont be seen when you have a release build apk – krckumar Apr 16 '19 at 10:29
  • thats right is there any way i can see that in release build ?? and also i already tried setting the logger level to debug / trace and it also doent help me receive information into client logs – Kawinesh S K Apr 17 '19 at 04:31
  • debug statements cannot be seen in release builds. – krckumar Apr 19 '19 at 05:32
  • so even i set the debugger level to Debug and send some analytics data we cant see those in the Client logs ? correct4 – Kawinesh S K Apr 22 '19 at 02:59