From 8993a1e8a10f35da4d9adcae05e37353b25d85a3 Mon Sep 17 00:00:00 2001 From: Ross Date: Mon, 19 Jan 2026 11:33:50 +0000 Subject: [PATCH] fix: replace logger with console.log in showCandidateDetails function --- js/main.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/js/main.js b/js/main.js index 588cb7e..e95e81f 100644 --- a/js/main.js +++ b/js/main.js @@ -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;