Hello! This website is still under construction. It will take some time before it's fully ready for public use. In the meantime, feel free to explore and try things out!
There are multiple ways to extract the logs:
The easiest way is to start the game's file server. Once it's running, you can access the log files through your PC or phone browser by visiting the game's IP address.
Watch this video tutorial for step-by-step instructions.
You can also use SideQuest or ADB:
Download ADB and run the following command:
adb pull "sdcard/Android/data/quest.eleven.forfunlabs/logs/"
If you're using logs from the PC version, find them in this folder:
.../Oculus/Software/for-fun-labs-eleven-table-tennis-vr/logs
If a log file exceeds the 100MB upload limit, you can clean it by removing unnecessary lines. Use one of the following commands:
sed '/UserCommunication/d' ALL-02.20.2025.7.47.58.PM.log > ALL-02.20.2025.7.47.58.PM.clean.log
Get-Content ALL-02.20.2025.7.47.58.PM.log | Where-Object { $_ -notmatch "UserCommunication" } | Set-Content ALL-02.20.2025.7.47.58.PM.clean.log