Skip to content

Commit

Permalink
Update ImageThumbConverter.java
Browse files Browse the repository at this point in the history
  • Loading branch information
scolapasta authored Mar 16, 2018
1 parent fe9a639 commit 9915442
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ private static boolean generateImageThumbnail(StorageIO<DataFile> storageIO, int
try {
storageIO.open();
} catch (IOException ioex) {
logger.warning("caught Exception trying to open an input stream for " + storageIO.getDataFile().getStorageIdentifier() + ioex);
logger.warning("caught IOException trying to open an input stream for " + storageIO.getDataFile().getStorageIdentifier() + ioex);
return false;
}

Expand Down Expand Up @@ -407,7 +407,7 @@ private static boolean isThumbnailCached(StorageIO<DataFile> storageIO, int size
try {
cached = storageIO.isAuxObjectCached(THUMBNAIL_SUFFIX + size);
} catch (Exception ioex) {
logger.fine("caught IO exception while checking for a cached thumbnail (file " + storageIO.getDataFile().getStorageIdentifier() + ")");
logger.fine("caught Exception while checking for a cached thumbnail (file " + storageIO.getDataFile().getStorageIdentifier() + ")");
return false;
}

Expand Down

0 comments on commit 9915442

Please sign in to comment.