aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorraeno <just.raeno@gmail.com>2018-12-05 23:13:08 +0400
committerraeno <just.raeno@gmail.com>2018-12-05 23:13:08 +0400
commite3d0917db8edf9a9be5b1fde60c37833ec75e30c (patch)
tree08276efab12865c962def0f0810c1c5c1d18411a /src
parenta3e19cbafa3c490c9dec6b0ffcdd8b55f648173d (diff)
Use console.warn instead of console.log
Diffstat (limited to 'src')
-rw-r--r--src/components/registration/registration.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/registration/registration.js b/src/components/registration/registration.js
index 9f32bf48..e5ead8bc 100644
--- a/src/components/registration/registration.js
+++ b/src/components/registration/registration.js
@@ -53,7 +53,7 @@ const registration = {
await this.signUp(this.user)
this.$router.push('/main/friends')
} catch (error) {
- console.log('Registration failed: ' + error)
+ console.warn('Registration failed: ' + error)
}
}
}