Clean-up debug logs
| @@ -448,6 +448,5 @@ export class FilterHelper { | ||
| 448 | 448 | for (const cache of Object.values(this.fuzzySearchCaches)) { |
| 449 | 449 | cache.resultMap.clear(); |
| 450 | 450 | } |
| 451 | - console.log('All fuzzy search caches cleared'); | |
| 452 | 451 | } |
| 453 | 452 | } |
| @@ -1756,7 +1756,7 @@ async function loadContextSettings() { | ||
| 1756 | 1756 | } else { |
| 1757 | 1757 | $element.val(power_user.context[control.property]); |
| 1758 | 1758 | } |
| 1759 | 1759 | console.logdebug(`Setting ${$element.prop('id')} to ${power_user.context[control.property]}`); |
| 1760 | 1760 | |
| 1761 | 1761 | // If the setting already exists, no need to duplicate it |
| 1762 | 1762 | // TODO: Maybe check the power_user object for the setting instead of a flag? |
| @@ -1767,7 +1767,7 @@ async function loadContextSettings() { | ||
| 1767 | 1767 | } else { |
| 1768 | 1768 | power_user.context[control.property] = value; |
| 1769 | 1769 | } |
| 1770 | 1770 | console.logdebug(`Setting ${$element.prop('id')} to ${value}`); |
| 1771 | 1771 | if (!CSS.supports('field-sizing', 'content') && $(this).is('textarea')) { |
| 1772 | 1772 | await resetScrollHeight($(this)); |
| 1773 | 1773 | } |