Log the full stacktrace when a ValidationException happens while saving a project
This will ease the debugging of some bugs in the future.
This commit is contained in:
parent
cd17d48d28
commit
a062bc05ce
1 changed files with 1 additions and 1 deletions
|
|
@ -337,7 +337,7 @@ public class SaveCommandBuilder {
|
|||
message += validationException.getMessage();
|
||||
}
|
||||
|
||||
LOG.warn(validationException.getMessage());
|
||||
LOG.warn("Error saving the project", validationException);
|
||||
Messagebox.show(
|
||||
_("Error saving the project\n{0}", message),
|
||||
_("Error"), Messagebox.OK, Messagebox.ERROR);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue