diff --git a/ImageGallery/src/org/sleuthkit/autopsy/imagegallery/datamodel/DrawableDB.java b/ImageGallery/src/org/sleuthkit/autopsy/imagegallery/datamodel/DrawableDB.java index c06935345d..e95a48c313 100644 --- a/ImageGallery/src/org/sleuthkit/autopsy/imagegallery/datamodel/DrawableDB.java +++ b/ImageGallery/src/org/sleuthkit/autopsy/imagegallery/datamodel/DrawableDB.java @@ -767,11 +767,11 @@ public final class DrawableDB { } } } catch (SQLException ex) { - logger.log(Level.SEVERE, "Failed to get group seen", ex); //NON-NLS + completeExceptionally(ex); } } } -// Callback to process result of seen query + // Callback to process result of seen query GroupSeenQueryResultProcessor queryResultProcessor = new GroupSeenQueryResultProcessor(); try { @@ -784,7 +784,7 @@ public final class DrawableDB { return queryResultProcessor.get(); } catch (ExecutionException | InterruptedException | TskCoreException ex) { String msg = String.format("Failed to get is group seen for group key %s", groupKey.getValueDisplayName()); //NON-NLS - logger.log(Level.WARNING, msg, ex); + logger.log(Level.SEVERE, msg, ex); } return false;