Skip to content

Commit

Permalink
Merge pull request #265 from icefoganalytics/test
Browse files Browse the repository at this point in the history
Sendtry log
  • Loading branch information
datajohnson authored Jun 26, 2024
2 parents 126feba + 56e0ebb commit cf5cad6
Showing 1 changed file with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ import { Knex } from "knex";
import { clone, isEmpty, sum, sumBy } from "lodash";
import moment from "moment";


import * as Sentry from "@sentry/node";

export class AssessmentCslftRepositoryV2 {
readonly db;

Expand Down Expand Up @@ -1142,7 +1145,11 @@ async function calculateFamilySize(
hasParent2 = true;
}

console.log("PARENT INFO", parentInfo, hasParent1, hasParent2)
console.log("PARENT INFO", parentInfo, hasParent1, hasParent2);

Sentry.captureMessage(`PARENT INFO, ${parentInfo}, ${hasParent1}, ${hasParent2}`)



family.total_dependants = 1 + parentDeps.length;
family.csl_dependants = 1;
Expand Down

0 comments on commit cf5cad6

Please sign in to comment.