mirror of
https://github.com/PAMGuard/PAMGuard.git
synced 2024-11-21 22:52:22 +00:00
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:
parent
e4faed5cfc
commit
1de5ec6e11
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user