diff --git a/umu/umu_run.py b/umu/umu_run.py index 00b69ef69..d06410247 100755 --- a/umu/umu_run.py +++ b/umu/umu_run.py @@ -523,9 +523,8 @@ def get_gamescope_baselayer_order() -> list[int] | None: # noqa: D103 return prop.value # type: ignore log.debug("GAMESCOPECTRL_BASELAYER_APPID property not found") except Exception as e: - log.exception( - "Error getting GAMESCOPECTRL_BASELAYER_APPID property: %s", e - ) + log.error("Error getting GAMESCOPECTRL_BASELAYER_APPID property") + log.exception(e) finally: d.close() @@ -562,9 +561,8 @@ def set_gamescope_baselayer_order(rearranged: list[int]) -> None: # noqa ", ".join(map(str, rearranged)), ) except Exception as e: - log.exception( - "Error setting GAMESCOPECTRL_BASELAYER_APPID property: %s", e - ) + log.error("Error setting GAMESCOPECTRL_BASELAYER_APPID property") + log.exception(e) finally: d.close()