Fixed error message.

This commit is contained in:
Jeff Wallace 2013-11-07 11:51:10 -05:00
parent 532ab0e919
commit ea92e0ece5

View File

@ -62,7 +62,7 @@ public class PstParser {
processFolder(pstFile.getRootFolder(), "\\", true);
return true;
} catch (PSTException | IOException ex) {
String msg = "Failed to create internal java-libpst PST file to parse" + ex.getMessage();
String msg = "Failed to create internal java-libpst PST file to parse: " + ex.getMessage();
logger.log(Level.WARNING, msg);
return false;
}