Sometimes when there is an issue with the client or a specific script, you may be asked to provide a "logcat". This refers to a system command that can be used to obtain log files (a record of what the bot was doing) that can be used by client developers and script writers in troubleshooting. This guide will walk you through how to capture a logcat file, that you can then send to a developer if they ask for it.
The first step for retrieving logs on Windows is opening the command prompt. A quick way to do this is by pressing the combination of Windows Key + R, typing in "cmd" and pressing Enter. The command prompt should now be open.
Paste the following command into the command prompt:
%userprofile%\.powbot\android\platform-tools\adb.exe logcat -t 1000 > dump.txt && notepad dump.txt
We recommend you should read these next if you haven't already!