Skip to content

Commit 9238e5d

Browse files
debugs instead of logs for multiframe image build and renderImage (#345)
* debugs instead of logs for multiframe image build and renderImage * Update docs --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 3351413 commit 9238e5d

File tree

8 files changed

+10
-10
lines changed

8 files changed

+10
-10
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88

99
## Dicom Image Toolkit for CornerstoneJS
1010

11-
### Current version: 2.4.24
11+
### Current version: 2.4.25
1212

13-
### Latest Published Release: 2.4.24
13+
### Latest Published Release: 2.4.25
1414

1515
This library provides common DICOM functionalities to be used in web-applications: it's wrapper that simplifies the use of cornerstone-js environment.
1616

dist/larvitar.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/larvitar.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/documentation/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,8 @@ <h3> </h3>
7474
<h1 id="larvitar">Larvitar</h1>
7575
<p><a href="https://github.com/dvisionlab/Larvitar"><img src="https://img.shields.io/badge/dynamic/json.svg?label=type-coverage&amp;prefix=%E2%89%A5&amp;suffix=%25&amp;query=$.typeCoverage.atLeast&amp;uri=https%3A%2F%2Fraw.githubusercontent.com%2Fplantain-00%2Ftype-coverage%2Fmaster%2Fpackage.json" alt="type-coverage"></a></p>
7676
<h2 id="dicom-image-toolkit-for-cornerstonejs">Dicom Image Toolkit for CornerstoneJS</h2>
77-
<h3 id="current-version%3A-2.4.24">Current version: 2.4.24</h3>
78-
<h3 id="latest-published-release%3A-2.4.24">Latest Published Release: 2.4.24</h3>
77+
<h3 id="current-version%3A-2.4.25">Current version: 2.4.25</h3>
78+
<h3 id="latest-published-release%3A-2.4.25">Latest Published Release: 2.4.25</h3>
7979
<p>This library provides common DICOM functionalities to be used in web-applications: it's wrapper that simplifies the use of cornerstone-js environment.</p>
8080
<h2 id="features%3A">Features:</h2>
8181
<ul>

docs/examples/larvitar.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

imaging/imageRendering.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -563,7 +563,7 @@ export const renderImage = function (
563563
setStore(["ready", element.id, true]);
564564
setStore(["seriesUID", element.id, data.seriesUID]);
565565
const t1 = performance.now();
566-
console.log(`Call to renderImage took ${t1 - t0} milliseconds.`);
566+
console.debug(`Call to renderImage took ${t1 - t0} milliseconds.`);
567567

568568
const uri = cornerstoneDICOMImageLoader.wadouri.parseImageId(
569569
data.imageId

imaging/loaders/multiframeLoader.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ export const buildMultiFrameImage = function (
146146
}
147147

148148
let t1 = performance.now();
149-
console.log(`Call to buildMultiFrameImage took ${t1 - t0} milliseconds.`);
149+
console.debug(`Call to buildMultiFrameImage took ${t1 - t0} milliseconds.`);
150150
};
151151

152152
/**

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"medical",
77
"cornerstone"
88
],
9-
"version": "2.4.24",
9+
"version": "2.4.25",
1010
"description": "typescript library for parsing, loading, rendering and interacting with DICOM images",
1111
"repository": {
1212
"url": "https://github.com/dvisionlab/Larvitar.git",

0 commit comments

Comments
 (0)