Enabling Fernand's bug tracking tool
Fernand includes a built-in bug tracking tool designed to help identify and troubleshoot issues quickly.
First, you'll need to enable the tracking on your Fernand's account. For that, open the developer console by hitting F12. You should see a new pane on your browser with a few tabs in it. Select the
Consoletab.In it, paste the following command to start the debugging agent
localStorage.setItem('fernand.debug', 'true')Refresh the page. This should enable the tracking system on your account. If you keep the developer console open, you should now see a message that says:
"[Fernand Debug] - Tracking ready."
You can freely close the developer console now ✌️
Download the tracking report
Use Fernand as usual. When a bug happens or something behaves unexpectedly:
Open the developer console (F12)
Run this command in the Console tab:
FernandDebug('download')A file will be download to your computer, that you can send to us.
Disabling Fernand debug tool
If anything starts to behave weirdly, cause loading or performance issues, or anything that was working before but stopped working after you enabled the debug system, you can disable it by opening the developer console again, and entering the following command:
localStorage.removeItem('fernand.debug')
