Use console.warn instead of console.log
This commit is contained in:
parent
a3e19cbafa
commit
e3d0917db8
|
@ -53,7 +53,7 @@ const registration = {
|
||||||
await this.signUp(this.user)
|
await this.signUp(this.user)
|
||||||
this.$router.push('/main/friends')
|
this.$router.push('/main/friends')
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
console.log('Registration failed: ' + error)
|
console.warn('Registration failed: ' + error)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue