From e3d0917db8edf9a9be5b1fde60c37833ec75e30c Mon Sep 17 00:00:00 2001 From: raeno Date: Wed, 5 Dec 2018 23:13:08 +0400 Subject: [PATCH] Use console.warn instead of console.log --- src/components/registration/registration.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/registration/registration.js b/src/components/registration/registration.js index 9f32bf4865..e5ead8bc10 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) } } }