Viewing Logs¶
In some cases, it might be useful to view logs from Chatterino. This doesn't require any special build or tools.
To view logs, run Chatterino from the command line.
Because Chatterino is a GUI application, you need to set the QT_WIN_DEBUG_CONSOLE
environment variable to either new
(create a new console window) or attach
(use the current console) on Windows (Qt documentation).
Through the QT_LOGGING_RULES
environment variable (Qt documentation), you can control which parts of the application emit logs at what level.
In release builds, the default level is "warn". To enable debug logs from just Chatterino, set the rules to chatterino.*.debug=true
.
Multiple rules can be concatenated with ;
: chatterino.*.debug=true;chatterino.http.*=false
(enable all debug logs except for HTTP ones).
QT_MESSAGE_PATTERN
can be used to adjust the format of the logs to include the time or calling function, for example (Qt documentation). %{time} %{category}: %{message}
will show the time and category for each message.
If you want to get live output of a running Chatterino instance, you can attach a debugger.
You can use the command /c2-set-logging-rules
to set the rules from Chatterino itself at runtime.
On Windows, c2-logs can help with attaching to running instances and changing their logging levels from the command line.