removed some remnant debug logs
This commit is contained in:
parent
cf6705baff
commit
5ab9d9b863
|
@ -752,7 +752,6 @@ function reloadMarkdownProcessor(render_formulas = false) {
|
||||||
}
|
}
|
||||||
|
|
||||||
function getCurrentChatId() {
|
function getCurrentChatId() {
|
||||||
console.debug(`selectedGroup:${selected_group}, this_chid:${this_chid}`);
|
|
||||||
if (selected_group) {
|
if (selected_group) {
|
||||||
return groups.find(x => x.id == selected_group)?.chat_id;
|
return groups.find(x => x.id == selected_group)?.chat_id;
|
||||||
}
|
}
|
||||||
|
|
|
@ -2102,8 +2102,6 @@ async function checkWorldInfo(chat, maxContext) {
|
||||||
const substituted = substituteParams(key);
|
const substituted = substituteParams(key);
|
||||||
const textToScan = buffer.get(entry);
|
const textToScan = buffer.get(entry);
|
||||||
|
|
||||||
console.debug(`${entry.uid}: ${substituted}`);
|
|
||||||
|
|
||||||
if (substituted && buffer.matchKeys(textToScan, substituted.trim(), entry)) {
|
if (substituted && buffer.matchKeys(textToScan, substituted.trim(), entry)) {
|
||||||
console.debug(`WI UID ${entry.uid} found by primary match: ${substituted}.`);
|
console.debug(`WI UID ${entry.uid} found by primary match: ${substituted}.`);
|
||||||
|
|
||||||
|
@ -2160,7 +2158,7 @@ async function checkWorldInfo(chat, maxContext) {
|
||||||
activatedNow.add(entry);
|
activatedNow.add(entry);
|
||||||
break primary;
|
break primary;
|
||||||
}
|
}
|
||||||
} else { console.debug(`No active entries for logic checks for word: ${substituted}.`); }
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue