Whether you are a developer or a log-hunting user, debugging is the way to go.
There are two ways to catch out the logs from Bottles:
using your System Terminal
using the Wine Debugger Console
Let's face them both together.
System Terminal
To capture all Bottles and wineprefixes logs, just start Bottles itself through the Terminal installed on the system, for example through:
GNOME Terminal
Konsole
XFCE4 Terminal
MATE Terminal
xterm
etc.
For example, if you installed Bottles via AppImage:
cd/path_to_appimage./Bottles*.AppImage
This way you will receive all the logs in the Terminal (which must remain open).
Example of Bottles log in System Terminal.
Logging levels
Using this method you will also see logs from Bottles and not only from runners. The following are the logging levels to better read and understand logs:
[INFO] This log informs the correct functioning of one or more operations performed by Bottles.
[WARNING] It is shown when an operation has been performed but there are one or more non-blocking warnings.
[ERROR] An error occurred and the operation was not completed.
[CRITICAL] The sudden error may have jeopardized Bottles from functioning correctly or an exception was not handled.
Wine Debugger
Wine comes with a built-in debugger (winedbg) for analyzing processes running in a wineprefix.
Wine debugger has several useful abilities, including the one to generate backtraces, set breakpoints, and even disassemble code. It supports a subset of the gdb commands, especially the most common ones. For instance you can use info proc and info thread and then attach to a given process, which can be very useful for running backtraces on deadlocks.