Skip to content
Snippets Groups Projects
Unverified Commit 5d2cb0c1 authored by Richard Cordovano's avatar Richard Cordovano Committed by GitHub
Browse files

Merge pull request #2546 from APriestman/fixAccountIdWarningMessage

Fix cut and paste error in warning message
parents 95235197 6e7b4f84
Branches
No related tags found
No related merge requests found
...@@ -545,7 +545,7 @@ public BlackboardArtifact addMessage(String messageType, ...@@ -545,7 +545,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)); LOGGER.log(Level.WARNING, String.format("Invalid account identifier %s", recipient));
} }
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment