Skip to content

Commit

Permalink
Remove console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
WietseWind committed Jun 6, 2024
1 parent 851f818 commit 61ac3c1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/components/Header.vue
Original file line number Diff line number Diff line change
Expand Up @@ -112,15 +112,15 @@ export default {
navTo = '/' + this.validQuery[0]
}
if (this.validQuery.length > 1) {
console.log(this.validQuery)
// console.log(this.validQuery)
navTo = '/command'
// console.log(this.validQuery)
Object.assign(navQuery, {
c: this.validQuery
})
}
}
console.log(navTo)
// console.log(navTo)
if (
navTo &&
(
Expand Down
6 changes: 3 additions & 3 deletions src/plugins/xrpl.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export default {

if (customEndpoint !== '') _endpoint = options.router.options.endpoint = customEndpoint
const endpoint = String(_endpoint || '')
console.log(endpoint)
// console.log(endpoint)
Vue.prototype.$ws = new XrplClient(endpoint)
Vue.prototype.$localnet = false

Expand All @@ -40,10 +40,10 @@ export default {
Vue.prototype.$net = net

Vue.prototype.$ws.on('ledger', ledger => Vue.prototype.$events.emit('ledger', ledger))
console.info('Connecting @ `plugins/xrpl`')
// console.info('Connecting @ `plugins/xrpl`')
await Vue.prototype.$ws.ready()
const state = Vue.prototype.$ws.getState()
console.info('Connected @ `plugins/xrpl`', state.server)
// console.info('Connected @ `plugins/xrpl`', state.server)
Vue.prototype.$events.emit('connected', state.server.publicKey)
}
}

0 comments on commit 61ac3c1

Please sign in to comment.