diff --git a/js/main.js b/js/main.js
index 8f29e68..48030aa 100644
--- a/js/main.js
+++ b/js/main.js
@@ -256,11 +256,11 @@ async function loadExamList(data) {
console.log("new question json id", new_question_json_id)
//q = q.toString();
$("#cache-details ul").append(
- `
Question (${saved_exam.exam_type}): ${q}`
+ `Question (${saved_exam.exam_type}): ${q} [New JSON id: ${new_question_json_id}]`
);
// If a single question is out of date we invalidate the lot...
const q_object = { qid: String(q), type: saved_exam.exam_type };
- console.log(q_object);
+ console.log("q_object", q_object);
question_db.question_data
.get(q_object)
.then((d) => {