fix: replace logger with console.log in showCandidateDetails function

This commit is contained in:
Ross
2026-01-19 11:33:50 +00:00
parent fe1f8dfc1d
commit 8993a1e8a1
+1 -2
View File
@@ -3,7 +3,6 @@ import * as helper from "./helpers.js";
import * as viewer from "./viewer.js";
import * as interact from "./interact.js";
import * as config from "./config.js";
import {logger} from "@cornerstonejs/core/utilities";
// const { v4: uuidv4 } = require('uuid');
log.setDefaultLevel("warn")
@@ -111,7 +110,7 @@ let global_username = null;
* Uses `global_cid`/`global_passcode` if set, otherwise falls back to localStorage.
*/
function showCandidateDetails() {
logger.debug("Show candidate details");
console.log("Show candidate details");
let cidToShow = global_cid;
let passToShow = global_passcode;