Skip to content

Commit

Permalink
[Cleanup] Remove console.log (aces#9048)
Browse files Browse the repository at this point in the history
Fix eslint warnings about console.log that slipped through
the code review of the PRs where they were merged.

One was a debug statement left behind, and 2 were the incorrect
log level.
  • Loading branch information
driusan authored Feb 12, 2024
1 parent e2d6f04 commit 8c8f32d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions modules/configuration/jsx/DiagnosisEvolution.js
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,7 @@ class DiagnosisEvolution extends Component {
});
}
}).catch((error) => {
console.log(error);
console.warn(error);
});
}

Expand Down Expand Up @@ -501,7 +501,7 @@ class DiagnosisEvolution extends Component {
});
}
}).catch((error) => {
console.log(error);
console.warn(error);
});
}

Expand Down
1 change: 0 additions & 1 deletion modules/imaging_qc/jsx/imagingQCIndex.js
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,6 @@ class ImagingQCIndex extends Component {
})
.catch((error) => {
this.setState({error: error});
console.log(error);
});
}

Expand Down

0 comments on commit 8c8f32d

Please sign in to comment.