mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-09 14:49:32 +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) {
|
||||
Logger.getLogger(ExifParserFileIngestModule.class.getName()).log(Level.SEVERE, null, 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) {
|
||||
logger.log(Level.WARNING, "IOException when parsing image file.", ex);
|
||||
logger.log(Level.WARNING, "IOException when parsing image file: " + f.getName(), ex);
|
||||
} finally {
|
||||
try {
|
||||
if(in!=null) { in.close(); }
|
||||
|
Loading…
x
Reference in New Issue
Block a user