mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 16:34:53 +01:00
log out full exception to console
This commit is contained in:
parent
3d1ad12581
commit
92b8a141b5
1 changed files with 5 additions and 1 deletions
|
|
@ -9,6 +9,7 @@ from openpype.settings.lib import (
|
|||
)
|
||||
from openpype.tools.settings import CHILD_OFFSET
|
||||
from openpype.api import (
|
||||
Logger,
|
||||
SystemSettings,
|
||||
ProjectSettings
|
||||
)
|
||||
|
|
@ -32,7 +33,7 @@ from .constants import (
|
|||
LOCAL_APPS_KEY
|
||||
)
|
||||
|
||||
log = logging.getLogger(__name__)
|
||||
log = Logger.get_logger(__name__)
|
||||
|
||||
|
||||
class LocalSettingsWidget(QtWidgets.QWidget):
|
||||
|
|
@ -250,6 +251,9 @@ class LocalSettingsWindow(QtWidgets.QWidget):
|
|||
self._settings_widget.update_local_settings(value)
|
||||
|
||||
except Exception as exc:
|
||||
log.warning(
|
||||
"Failed to create local settings window", exc_info=True
|
||||
)
|
||||
error_msg = str(exc)
|
||||
|
||||
crashed = error_msg is not None
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue