summaryrefslogtreecommitdiffstats
path: root/src/components/AppNavigation/RootNavigation.vue
diff options
context:
space:
mode:
authorJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2021-06-04 12:19:55 +0200
committerJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2021-06-04 12:19:55 +0200
commit3522ff1e3e8584bbae52b95d1361d923a3f655e1 (patch)
tree0040c29f99a995707a6c757894b609e690f6f613 /src/components/AppNavigation/RootNavigation.vue
parenta8ed74fe9572c89ee2dcb598f29e2d2e58ee2198 (diff)
Fix init circle loading and logger debug
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'src/components/AppNavigation/RootNavigation.vue')
-rw-r--r--src/components/AppNavigation/RootNavigation.vue6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/components/AppNavigation/RootNavigation.vue b/src/components/AppNavigation/RootNavigation.vue
index 91c81cc7..351156fc 100644
--- a/src/components/AppNavigation/RootNavigation.vue
+++ b/src/components/AppNavigation/RootNavigation.vue
@@ -314,7 +314,7 @@ export default {
createNewGroup(e) {
const input = e.target.querySelector('input[type=text]')
const groupName = input.value.trim()
- console.debug('Creating new group', groupName)
+ this.logger.debug('Creating new group', { groupName })
// Check if already exists
if (this.groups.find(group => group.name === groupName)) {
@@ -324,7 +324,7 @@ export default {
this.createGroupError = null
- console.debug('Created new local group', groupName)
+ this.logger.debug('Created new local group', { groupName })
this.$store.dispatch('addGroup', groupName)
this.isNewGroupMenuOpen = false
@@ -349,7 +349,7 @@ export default {
this.isNewCircleModalOpen = true
},
async createNewCircle(circleName, isPersonal, isLocal) {
- console.debug('Creating new circle', circleName)
+ this.logger.debug('Creating new circle', { circleName })
this.createCircleLoading = true