Skip to content

Commit

Permalink
Add more console log for wearables error
Browse files Browse the repository at this point in the history
  • Loading branch information
projkov committed Dec 12, 2023
1 parent ef020de commit 5809349
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/containers/PatientDetails/PatientWearables/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,8 @@ export function PatientWearables(props: PatientWearablesProps) {
usePatientHeaderLocationTitle({ title: t`Wearables` });

if (isFailure(wearablesData)) {
console.log(wearablesData.status, wearablesData.error);
console.log('status', wearablesData.status);
console.log('error', wearablesData.error);
}

return (
Expand Down

0 comments on commit 5809349

Please sign in to comment.