GetSocial SDK Debug Logs¶
Enabling Debug Logs¶
By default GetSocial SDK prints only Warnings
and above to the log. To enable debug logs follow the guide below.
Android¶
From the terminal on your computer execute:
adb shell setprop debug.getsocial.sdk.app [your package name]
You have to restart the app to see the logs.
To disable debug logs reboot the device or execute the command below:
adb shell setprop debug.getsocial.sdk.app none
iOS¶
To enable debug mode on iOS, you have to add the following parameter to getsocial.sh
in Build Phases
-> Run Script
:
./getsocial.sh --debug=true
To disable debug logs remove the setting or set the value to false.