print traceback when error during plugin registration happens

This commit is contained in:
iLLiCiTiT 2019-10-22 12:01:43 +02:00
parent 11e2382dfd
commit 43f63fd260

View file

@ -126,7 +126,7 @@ class FtrackServer:
msg = '"{}" - register was not successful ({})'.format(
function_dict['name'], str(exc)
)
log.warning(msg)
log.warning(msg, exc_info=True)
def run_server(self):
self.session = ftrack_api.Session(auto_connect_event_hub=True,)