How to Capture Verbose Logs
Why do we Need Verbose Logs?
By default the logging enabled in Wine and Lutris builds do not collect enough detailed information to solve many issues. This is in fact usually a good thing as Wine logs can get very densely complicated very quickly, so less logging means less resources used when playing games. Fantastic when things are working correctly, not so great when trying to troubleshoot technical problems.
Lutris Logs
To capture more verbose logs in Lutris if you already have League installed:
- Right click League of Legends
- Select
Configure
- Select
Runner options
- Enable
Output debugging info
- Close Lutris completely
- Open your terminal and run
lutris -d
- Try to reproduce your issue
To capture more verbose logs in Lutris if you don't already have League installed (ie. you're having problems installing League):
- Close Lutris entirely
- Open your terminal and run
lutris -d
- Try to reproduce your issue
After you've reproduced your issue you need to copy the output in the terminal and share all of it with us. Do not try to past the logs directly into a reddit post as reddit will not format the large amount of text nicely. Instead you can use a pastebin service such as Ubuntu's Pastebin.
Wine Logs
If you are not using Lutris you can manually change Wine's Debug Channels to capture verbose logs. For example: using the WINEDEBUG=warn+all
when launching your desired .exe
. For more information please read the WineHQ wiki.