Skip to content

Commit

Permalink
chore: change logs to debug
Browse files Browse the repository at this point in the history
  • Loading branch information
pedrokohler committed Oct 24, 2024
1 parent 1e4ca43 commit d0b13f3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/annotation.js
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ async function _fetchGraphicData ({
)
} else {
const progressCallback = (progressEvent) => {
console.info(`Loaded ${Math.round(progressEvent.loaded / 1024 / 1024 * 100) / 100} MB from annotation group "${uid}"`)
console.debug(`Loaded ${Math.round(progressEvent.loaded / 1024 / 1024 * 100) / 100} MB from annotation group "${uid}"`)
}
const options = {
progressCallback: throttle(progressCallback, 1000)
Expand Down
2 changes: 1 addition & 1 deletion src/viewer.js
Original file line number Diff line number Diff line change
Expand Up @@ -3362,7 +3362,7 @@ class VolumeImageViewer {
* ellipse or rectangle is counted as one Annotation.
*/
const numberOfAnnotations = Number(metadataItem.NumberOfAnnotations)
console.log('AnnotationGroupUID:', metadataItem.AnnotationGroupUID, 'NumberOfAnnotations:', numberOfAnnotations)
console.debug('AnnotationGroupUID:', metadataItem.AnnotationGroupUID, 'NumberOfAnnotations:', numberOfAnnotations)

/** Point, Open/Closed Polygon, Circle, Ellipse, etc. */
const graphicType = metadataItem.GraphicType
Expand Down

0 comments on commit d0b13f3

Please sign in to comment.