Skip to content

Commit

Permalink
Remove leftover debug logs
Browse files Browse the repository at this point in the history
  • Loading branch information
DominikDoom committed Dec 26, 2022
1 parent ceba611 commit b57042e
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions javascript/tagAutocomplete.js
Original file line number Diff line number Diff line change
Expand Up @@ -432,7 +432,6 @@ function insertTextAtCursor(textArea, result, tagword) {

umiPreviousTags = umiTags;

console.log("updated: " + umiPreviousTags)
hideResults(textArea);
}

Expand Down Expand Up @@ -726,7 +725,7 @@ async function autocomplete(textArea, prompt, fixedTag = null) {
return acc;
}, { positive: [], negative: [], optional: [], all: [] });

console.log({ matches })
//console.log({ matches })

const filteredWildcards = (tagword) => {
const wildcards = yamlWildcards.filter(x => {
Expand Down Expand Up @@ -866,7 +865,7 @@ async function autocomplete(textArea, prompt, fixedTag = null) {

// Guard for empty results
if (!results.length) {
console.log('No results found for "' + tagword + '"');
//console.log('No results found for "' + tagword + '"');
hideResults(textArea);
return;
}
Expand Down

0 comments on commit b57042e

Please sign in to comment.