Skip to content

Commit

Permalink
Logging (#340)
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitri-korin-bcps authored Apr 19, 2024
1 parent dafb3d8 commit e252912
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion frontend/src/app/store/reducers/case-thunks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,16 @@ const parseAssessmentResponse = async (
})[0];

let officerFullName = null;


console.trace();
console.log("actor:", actor);
console.log("officers:");
officers.map((officer) => {
const {person_guid, first_name, last_name} = officer.person_guid;
console.log(` guid='${person_guid}' name='${first_name} ${last_name}'`);
return null;
});

let officerNames = officers
.filter((person) => person.person_guid.person_guid === actor)
.map((officer) => {
Expand Down

0 comments on commit e252912

Please sign in to comment.