mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-09 06:39:33 +00:00
add file name to log msg
This commit is contained in:
parent
e870e08181
commit
df9be41f28
@ -153,9 +153,9 @@ public final class ExifParserFileIngestModule implements IngestModuleAbstractFil
|
|||||||
} catch (TskCoreException ex) {
|
} catch (TskCoreException ex) {
|
||||||
Logger.getLogger(ExifParserFileIngestModule.class.getName()).log(Level.SEVERE, null, ex);
|
Logger.getLogger(ExifParserFileIngestModule.class.getName()).log(Level.SEVERE, null, ex);
|
||||||
} catch (ImageProcessingException ex) {
|
} catch (ImageProcessingException ex) {
|
||||||
logger.log(Level.WARNING, "Failed to process the image.");
|
logger.log(Level.WARNING, "Failed to process the image file: " + f.getName());
|
||||||
} catch (IOException ex) {
|
} catch (IOException ex) {
|
||||||
logger.log(Level.WARNING, "IOException when parsing image file.", ex);
|
logger.log(Level.WARNING, "IOException when parsing image file: " + f.getName(), ex);
|
||||||
} finally {
|
} finally {
|
||||||
try {
|
try {
|
||||||
if(in!=null) { in.close(); }
|
if(in!=null) { in.close(); }
|
||||||
|
Loading…
x
Reference in New Issue
Block a user