How to Use This Website

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!

Extracting ETT Logs from Quest

There are multiple ways to extract the logs:

Recommended Method

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.

Alternative Methods

You can also use SideQuest or ADB:

Download ADB and run the following command:

adb pull "sdcard/Android/data/quest.eleven.forfunlabs/logs/"
  

Extracting Logs from PC

If you're using logs from the PC version, find them in this folder:

.../Oculus/Software/for-fun-labs-eleven-table-tennis-vr/logs
  

Handling Large Log Files

If a log file exceeds the 100MB upload limit, you can clean it by removing unnecessary lines. Use one of the following commands:

Linux

sed '/UserCommunication/d' ALL-02.20.2025.7.47.58.PM.log > ALL-02.20.2025.7.47.58.PM.clean.log
  

Windows PowerShell

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