Skip to content

Commit

Permalink
Fix v silly typo for #677.
Browse files Browse the repository at this point in the history
  • Loading branch information
anjackson committed Oct 21, 2022
1 parent 58357e4 commit e05063b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/controllers/TargetController.java
Original file line number Diff line number Diff line change
Expand Up @@ -1731,7 +1731,7 @@ else if(filledForm.get().noLdCriteriaMet == null) {
if(watched && !original.isWatched()) {
String mapStr = "";
for( String k : request().headers().keySet() ) {
mapStr += k + "=" + Arrays.toString(request().headers().get(k) + " ");
mapStr += k + "=" + Arrays.toString(request().headers().get(k)) + " ";
}
Logger.warn("Target id=" + original.id + " title=" + original.title + " is going from unwatched to watched. User email="
+ currentUser.email + " ddhaptUser=" + currentUser.ddhaptUser + " request headers=" + mapStr);
Expand Down

0 comments on commit e05063b

Please sign in to comment.