Skip to content
Snippets Groups Projects
Unverified Commit b07161e4 authored by Ann Priestman's avatar Ann Priestman Committed by GitHub
Browse files

Merge pull request #1986 from sleuthkit/release-4.10.0

Release 4.10.0
parents 1fd734f4 5dc00ec7
No related branches found
No related tags found
No related merge requests found
...@@ -343,7 +343,7 @@ private void createContactMethodAccountAndRelationship(Account.Type accountType, ...@@ -343,7 +343,7 @@ private void createContactMethodAccountAndRelationship(Account.Type accountType,
} }
} }
catch (InvalidAccountIDException ex) { catch (InvalidAccountIDException ex) {
LOGGER.log(Level.WARNING, String.format("Failed to create account with id %s", accountUniqueID), ex); LOGGER.log(Level.WARNING, String.format("Failed to create account with id %s", accountUniqueID));
} }
} }
} }
...@@ -530,7 +530,7 @@ public BlackboardArtifact addMessage(String messageType, ...@@ -530,7 +530,7 @@ public BlackboardArtifact addMessage(String messageType,
try { try {
senderAccountInstance = createAccountInstance(moduleAccountsType, senderId); senderAccountInstance = createAccountInstance(moduleAccountsType, senderId);
} catch (InvalidAccountIDException ex) { } catch (InvalidAccountIDException ex) {
LOGGER.log(Level.WARNING, String.format("Invalid account identifier %s", senderId), ex); LOGGER.log(Level.WARNING, String.format("Invalid account identifier %s", senderId));
} }
} }
...@@ -544,7 +544,7 @@ public BlackboardArtifact addMessage(String messageType, ...@@ -544,7 +544,7 @@ public BlackboardArtifact addMessage(String messageType,
try { try {
recipientAccountsList.add(createAccountInstance(moduleAccountsType, recipient)); recipientAccountsList.add(createAccountInstance(moduleAccountsType, recipient));
} catch (InvalidAccountIDException ex) { } catch (InvalidAccountIDException ex) {
LOGGER.log(Level.WARNING, String.format("Invalid account identifier %s", senderId), ex); LOGGER.log(Level.WARNING, String.format("Invalid account identifier %s", senderId));
} }
} }
} }
...@@ -781,7 +781,7 @@ public BlackboardArtifact addCalllog(CommunicationDirection direction, ...@@ -781,7 +781,7 @@ public BlackboardArtifact addCalllog(CommunicationDirection direction,
try { try {
callerAccountInstance = createAccountInstance(moduleAccountsType, callerId); callerAccountInstance = createAccountInstance(moduleAccountsType, callerId);
} catch (InvalidAccountIDException ex) { } catch (InvalidAccountIDException ex) {
LOGGER.log(Level.WARNING, String.format("Failed to create account with id %s", callerId), ex); LOGGER.log(Level.WARNING, String.format("Failed to create account with id %s", callerId));
} }
} }
...@@ -796,7 +796,7 @@ public BlackboardArtifact addCalllog(CommunicationDirection direction, ...@@ -796,7 +796,7 @@ public BlackboardArtifact addCalllog(CommunicationDirection direction,
recipientAccountsList.add(createAccountInstance(moduleAccountsType, callee)); recipientAccountsList.add(createAccountInstance(moduleAccountsType, callee));
} }
catch (InvalidAccountIDException ex) { catch (InvalidAccountIDException ex) {
LOGGER.log(Level.WARNING, String.format("Failed to create account with id %s", callerId), ex); LOGGER.log(Level.WARNING, String.format("Failed to create account with id %s", callerId));
} }
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment