Remove console.logs

This commit is contained in:
Pavle Portic 2019-03-27 00:46:18 +01:00
parent 0b37305080
commit c69d5f460c
Signed by: TheEdgeOfRage
GPG Key ID: 6758ACE46AA2A849
2 changed files with 3 additions and 5 deletions

View File

@ -6,7 +6,7 @@
<script>
import AuthController from '../controllers/auth.controller';
// import AuthController from '../controllers/auth.controller';
export default {
name: 'Index',
@ -19,9 +19,8 @@ export default {
methods: {
},
mounted() {
AuthController.getUser().then((response) => {
console.log(response.data);
});
// AuthController.getUser().then((response) => {
// });
},
};
</script>

View File

@ -41,7 +41,6 @@ const configureHttp = () => {
const configureRaven = () => {
if (config.getEnv() !== 'dev') {
console.log('Setting up Raven.js');
Raven
.config('https://2b1b0eea285244289175e53d65421fac@sentry.theedgeofrage.com/3')
.addPlugin(RavenVue, Vue)