mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-04-28 17:57:16 +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
|
||||
except Exception as e:
|
||||
import traceback
|
||||
|
@ -551,6 +551,7 @@ class Reconstruction(UIGraph):
|
|||
trace
|
||||
)
|
||||
)
|
||||
logging.error("Error while loading '{}'.".format(filepath))
|
||||
logging.error(trace)
|
||||
return False
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue