Skip to content

Commit

Permalink
Make console into LOGGER
Browse files Browse the repository at this point in the history
  • Loading branch information
joswarmer committed Oct 30, 2024
1 parent 7d8bad1 commit aa2f97b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/core-svelte/src/lib/components/TextComponent.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -285,11 +285,11 @@
}
}
const onFocusIn = () => {
console.log(`onFocusIn ${id}: `+ " partof:" + partOfDropdown + " isEditing:" + isEditing)
LOGGER.log(`onFocusIn ${id}: `+ " partof:" + partOfDropdown + " isEditing:" + isEditing)
editor.selectElementForBox(box)
}
const onFocusInSpan = () => {
console.log(`onFocusInSpan ${id}: `+ " partof:" + partOfDropdown + " isEditing:" + isEditing)
LOGGER.log(`onFocusInSpan ${id}: `+ " partof:" + partOfDropdown + " isEditing:" + isEditing)
editor.selectElementForBox(box)
}
Expand Down

0 comments on commit aa2f97b

Please sign in to comment.