mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-06 21:00:22 +00:00
Not logging InterruptedException as SEVERE, and stopping AID refresh
This commit is contained in:
parent
2bf92ad219
commit
01fbe4bea1
@ -365,8 +365,9 @@ final class AutoIngestMonitor extends Observable implements PropertyChangeListen
|
||||
LOGGER.log(Level.SEVERE, "Unknown AutoIngestJobData.ProcessingStatus");
|
||||
break;
|
||||
}
|
||||
} catch (InterruptedException ex) {
|
||||
LOGGER.log(Level.SEVERE, String.format("Unexpected interrupt while retrieving coordination service node data for '%s'", node), ex);
|
||||
} catch (InterruptedException ignore) {
|
||||
LOGGER.log(Level.WARNING, "Interrupt while retrieving coordination service node data");
|
||||
return newJobsSnapshot;
|
||||
} catch (AutoIngestJobNodeData.InvalidDataException ex) {
|
||||
LOGGER.log(Level.SEVERE, String.format("Unable to use node data for '%s'", node), ex);
|
||||
} catch (AutoIngestJob.AutoIngestJobException ex) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user