mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-04-29 10:17:27 +02:00
[ui] minor: on project load failure add the fullpath to the project file in the log
This commit is contained in:
parent
d62f499db9
commit
d2c3ac6e26
1 changed files with 2 additions and 1 deletions
|
@ -539,7 +539,7 @@ class Reconstruction(UIGraph):
|
||||||
""
|
""
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
logging.error("Error while loading '{}': No Such File.".format(os.path.basename(filepath)))
|
logging.error("Error while loading '{}': No Such File.".format(filepath))
|
||||||
return False
|
return False
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
import traceback
|
import traceback
|
||||||
|
@ -551,6 +551,7 @@ class Reconstruction(UIGraph):
|
||||||
trace
|
trace
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
logging.error("Error while loading '{}'.".format(filepath))
|
||||||
logging.error(trace)
|
logging.error(trace)
|
||||||
return False
|
return False
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue