proton: Add +unwind to the default debug channels.

This commit is contained in:
Rémi Bernon 2021-12-14 09:14:15 +01:00 committed by Arkadiusz Hiler
parent 2b4bfa46d6
commit 959f3665c3
2 changed files with 2 additions and 2 deletions

2
proton
View file

@ -981,7 +981,7 @@ class Session:
log("************************************************")
if "PROTON_LOG" in self.env and nonzero(self.env["PROTON_LOG"]):
self.env.setdefault("WINEDEBUG", "+timestamp,+pid,+tid,+seh,+debugstr,+loaddll,+mscoree")
self.env.setdefault("WINEDEBUG", "+timestamp,+pid,+tid,+seh,+unwind,+debugstr,+loaddll,+mscoree")
self.env.setdefault("DXVK_LOG_LEVEL", "info")
self.env.setdefault("VKD3D_DEBUG", "warn")
self.env.setdefault("WINE_MONO_TRACE", "E:System.NotImplementedException")

View file

@ -7,7 +7,7 @@ user_settings = {
#Log directory can be overridden with $PROTON_LOG_DIR.
#Wine debug logging
"WINEDEBUG": "+timestamp,+pid,+tid,+seh,+debugstr,+loaddll,+mscoree",
"WINEDEBUG": "+timestamp,+pid,+tid,+seh,+unwind,+debugstr,+loaddll,+mscoree",
#DXVK debug logging
"DXVK_LOG_LEVEL": "info",