Change error reporting in Binary UID functions

Message on screen rather than stack trace since it's normal when a psfx
moves to a different pc
This commit is contained in:
Douglas Gillespie 2022-10-21 12:22:09 +01:00
parent e4faed5cfc
commit 1de5ec6e11

View File

@ -531,10 +531,12 @@ public class binaryUIDFunctions {
out.close();
}
} catch (TransformerException e) {
e.printStackTrace();
System.err.println(e.getMessage());
// e.printStackTrace();
return false;
} catch (IOException e) {
e.printStackTrace();
System.err.println(e.getMessage());
// e.printStackTrace();
return false;
}
return true;