Skip to content

Commit

Permalink
Changing 'no task owner' message.
Browse files Browse the repository at this point in the history
  • Loading branch information
mederly committed Jan 28, 2015
1 parent 91397e8 commit 928d56d
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -90,7 +90,7 @@ private void assertCorrectness(AuditEventRecord record, Task task) {
LOGGER.warn("Task is null in a call to audit service");
} else {
if (task.getOwner() == null) {
LOGGER.warn("Task '{}' has no owner in a call to audit service", new Object[]{task.getName()});
LOGGER.warn("Task '{}' has no owner in a call to audit service (should not happen except for initial repository loading)", new Object[]{task.getName()});
}
}
}
Expand Down

0 comments on commit 928d56d

Please sign in to comment.