Merge pull request #3335 from DeltaNedas/error

add more info to schematic errors
This commit is contained in:
Anuken 2020-11-10 18:47:37 -05:00 committed by GitHub
commit d10960817d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -133,6 +133,7 @@ public class Schematics implements Loadable{
try{
write(newSchematic, target.file);
}catch(Exception e){
Log.err("Failed to overwrite schematic '@' (@)", newSchematic.name(), target.file);
Log.err(e);
ui.showException(e);
}
@ -153,6 +154,7 @@ public class Schematics implements Loadable{
return s;
}catch(Throwable e){
Log.err("Failed to read schematic from file '@'", file);
Log.err(e);
}
return null;
@ -188,6 +190,7 @@ public class Schematics implements Loadable{
try{
return getBuffer(schematic).getTexture();
}catch(Throwable t){
Log.err("Failed to get preview for schematic '@' (@)", schematic.name(), schematic.file);
Log.err(t);
errored.add(schematic);
return errorTexture;