diff --git a/src/components/font_control/font_control.js b/src/components/font_control/font_control.js index a66e1b88c..81c46ec89 100644 --- a/src/components/font_control/font_control.js +++ b/src/components/font_control/font_control.js @@ -27,7 +27,6 @@ export default { }, emits: ['update:modelValue'], data() { - console.log(this.fallback) return { manualEntry: false, availableOptions: [ diff --git a/src/stores/instance.js b/src/stores/instance.js index 71ee05e7a..2923f3ad8 100644 --- a/src/stores/instance.js +++ b/src/stores/instance.js @@ -164,7 +164,6 @@ const DEFAULT_STATE = { ...LOCAL_DEFAULT_CONFIG, }, } -console.log('===', ROOT_STATE_DEFINITIONS) export const useInstanceStore = defineStore('instance', { state: () => ({ ...DEFAULT_STATE }), diff --git a/src/stores/sync_config.js b/src/stores/sync_config.js index 9b4f7968d..7a5b1f4e1 100644 --- a/src/stores/sync_config.js +++ b/src/stores/sync_config.js @@ -307,8 +307,6 @@ export const _mergePrefs = (recent, stale) => { defaultState: ROOT_CONFIG, }) - console.log(path, args[0]) - return finalValue !== undefined }) .forEach(({ path, operation, args }) => { @@ -773,7 +771,7 @@ export const useSyncConfigStore = defineStore('sync_config', { }, persist: { afterLoad(state) { - console.log('Validating persisted state of SyncConfig') + console.debug('Validating persisted state of SyncConfig') const newState = { ...state } const newEntries = Object.entries(newState.prefsStorage.simple).map( ([path, value]) => { diff --git a/src/stores/user_highlight.js b/src/stores/user_highlight.js index 924fd4899..ca61c6e4e 100644 --- a/src/stores/user_highlight.js +++ b/src/stores/user_highlight.js @@ -155,7 +155,6 @@ export const _mergeHighlights = (recent, stale) => { if (!recent) return stale const { _journal: recentJournal, ...recentHighlight } = recent const { _journal: staleJournal } = stale - console.log(recentHighlight) /** Journal entry format: * user: user to entry in highlight storage * timestamp: timestamp of the change @@ -333,7 +332,6 @@ export const useUserHighlightStore = defineStore('user_highlight', { if (stale && recent && !this.dirty) { this.cache._timestamp = Math.min(stale._timestamp, recent._timestamp) } - console.log('CACHE', this.cache) this.highlight = this.cache.highlight }, pushHighlight({ force = false } = {}) {