From 959f3665c3eb5360d6bb8f30871c543950e5576a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Bernon?= Date: Tue, 14 Dec 2021 09:14:15 +0100 Subject: [PATCH] proton: Add +unwind to the default debug channels. --- proton | 2 +- user_settings.sample.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/proton b/proton index 9598781e..9e4ee5c6 100755 --- a/proton +++ b/proton @@ -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") diff --git a/user_settings.sample.py b/user_settings.sample.py index fdb9c30c..b6ab4e21 100755 --- a/user_settings.sample.py +++ b/user_settings.sample.py @@ -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",