fix: replace logger with console.log in showCandidateDetails function
This commit is contained in:
+1
-2
@@ -3,7 +3,6 @@ import * as helper from "./helpers.js";
|
|||||||
import * as viewer from "./viewer.js";
|
import * as viewer from "./viewer.js";
|
||||||
import * as interact from "./interact.js";
|
import * as interact from "./interact.js";
|
||||||
import * as config from "./config.js";
|
import * as config from "./config.js";
|
||||||
import {logger} from "@cornerstonejs/core/utilities";
|
|
||||||
// const { v4: uuidv4 } = require('uuid');
|
// const { v4: uuidv4 } = require('uuid');
|
||||||
|
|
||||||
log.setDefaultLevel("warn")
|
log.setDefaultLevel("warn")
|
||||||
@@ -111,7 +110,7 @@ let global_username = null;
|
|||||||
* Uses `global_cid`/`global_passcode` if set, otherwise falls back to localStorage.
|
* Uses `global_cid`/`global_passcode` if set, otherwise falls back to localStorage.
|
||||||
*/
|
*/
|
||||||
function showCandidateDetails() {
|
function showCandidateDetails() {
|
||||||
logger.debug("Show candidate details");
|
console.log("Show candidate details");
|
||||||
let cidToShow = global_cid;
|
let cidToShow = global_cid;
|
||||||
let passToShow = global_passcode;
|
let passToShow = global_passcode;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user