console.log debug statement removed
This commit is contained in:
parent
399664cc04
commit
95591993b8
3 changed files with 3 additions and 3 deletions
|
|
@ -419,7 +419,7 @@ export const placeholdersUtils = {
|
||||||
} = args || {};
|
} = args || {};
|
||||||
let currPHs = await placeholdersUtils.extractPlaceholders(prompt_text);
|
let currPHs = await placeholdersUtils.extractPlaceholders(prompt_text);
|
||||||
// console.log(">>>>>>>>>> currPHs: " + JSON.stringify(currPHs));
|
// console.log(">>>>>>>>>> currPHs: " + JSON.stringify(currPHs));
|
||||||
console.log(">>>>>>>>>> curr_message: " + JSON.stringify(curr_message));
|
// console.log(">>>>>>>>>> curr_message: " + JSON.stringify(curr_message));
|
||||||
let finalSubs = {};
|
let finalSubs = {};
|
||||||
for(let currPH of currPHs){
|
for(let currPH of currPHs){
|
||||||
switch(currPH.id){
|
switch(currPH.id){
|
||||||
|
|
|
||||||
|
|
@ -30,7 +30,7 @@ export const taPromptUtils = {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
async preparePrompt(args){ console.log(">>>>>>>>>> taPromptUtils.preparePrompt args: " + JSON.stringify(args));
|
async preparePrompt(args){
|
||||||
const {
|
const {
|
||||||
curr_prompt = {},
|
curr_prompt = {},
|
||||||
curr_message = {},
|
curr_message = {},
|
||||||
|
|
|
||||||
|
|
@ -1049,7 +1049,7 @@ async function processEmails(messages, addTagsAuto, spamFilter) {
|
||||||
msg_text: msg_text
|
msg_text: msg_text
|
||||||
});
|
});
|
||||||
taLog.log("Special prompt: " + specialFullPrompt_spamfilter);
|
taLog.log("Special prompt: " + specialFullPrompt_spamfilter);
|
||||||
console.log(">>>>>>>> Special prompt for spamfilter: " + specialFullPrompt_spamfilter);
|
// console.log(">>>>>>>> Special prompt for spamfilter: " + specialFullPrompt_spamfilter);
|
||||||
let cmd_spamfilter = new mzta_specialCommand(specialFullPrompt_spamfilter, prefs_init.connection_type, prefs_init.do_debug);
|
let cmd_spamfilter = new mzta_specialCommand(specialFullPrompt_spamfilter, prefs_init.connection_type, prefs_init.do_debug);
|
||||||
await cmd_spamfilter.initWorker();
|
await cmd_spamfilter.initWorker();
|
||||||
let spamfilter_result = '';
|
let spamfilter_result = '';
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue