mirror of
https://github.com/PAMGuard/PAMGuard.git
synced 2024-11-22 07:02:29 +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();
|
out.close();
|
||||||
}
|
}
|
||||||
} catch (TransformerException e) {
|
} catch (TransformerException e) {
|
||||||
e.printStackTrace();
|
System.err.println(e.getMessage());
|
||||||
|
// e.printStackTrace();
|
||||||
return false;
|
return false;
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
e.printStackTrace();
|
System.err.println(e.getMessage());
|
||||||
|
// e.printStackTrace();
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
|
Loading…
Reference in New Issue
Block a user