mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
log traceback when webserver connection is not possible
This commit is contained in:
parent
54b8719b76
commit
59f36cc7c8
1 changed files with 6 additions and 3 deletions
|
|
@ -53,9 +53,12 @@ class WebServerModule(OpenPypeModule, ITrayService):
|
|||
try:
|
||||
module.webserver_initialization(self.server_manager)
|
||||
except Exception:
|
||||
self.log.warning((
|
||||
"Failed to connect module \"{}\" to webserver."
|
||||
).format(module.name))
|
||||
self.log.warning(
|
||||
(
|
||||
"Failed to connect module \"{}\" to webserver."
|
||||
).format(module.name),
|
||||
exc_info=True
|
||||
)
|
||||
|
||||
def tray_init(self):
|
||||
self.create_server_manager()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue