We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1c5667d commit c55dc22Copy full SHA for c55dc22
src/murfey/client/contexts/spa.py
@@ -785,8 +785,11 @@ def post_transfer(
785
foil_hole: Optional[int] = self._position_analysis(
786
transferred_file, environment, source, machine_config
787
)
788
- except Exception:
+ except Exception as e:
789
# try to continue if position information gathering fails so that movie is processed anyway
790
+ logger.warning(
791
+ f"Unable to register foil hole for {str(file_transferred_to)}. Exception: {str(e)}"
792
+ )
793
foil_hole = None
794
795
preproc_url = f"{str(environment.url.geturl())}/visits/{environment.visit}/{environment.murfey_session}/spa_preprocess"
0 commit comments