diff --git a/src/app/core/auth/auth.service.ts b/src/app/core/auth/auth.service.ts
index 4c520e8f303f563dcd5f47239e1b080ee7e69216..229c44bcfa1c0a14882950c18e393109ad76f937 100644
--- a/src/app/core/auth/auth.service.ts
+++ b/src/app/core/auth/auth.service.ts
@@ -116,7 +116,6 @@ export class AuthService {
     options.headers = headers;
     return this.authRequestService.postToEndpoint('login', body, options).pipe(
       map((status: AuthStatus) => {
-        console.log('yey response');
         if (status.authenticated) {
           return status;
         } else {
diff --git a/src/app/core/data/request.effects.ts b/src/app/core/data/request.effects.ts
index 537a0b69b6c7bf835916818d010001bb89e9b15b..5e7bec698bf38fc0e0d89dff8aae2bc7f30890bd 100644
--- a/src/app/core/data/request.effects.ts
+++ b/src/app/core/data/request.effects.ts
@@ -42,7 +42,6 @@ export class RequestEffects {
     }),
     filter((entry: RequestEntry) => hasValue(entry)),
     map((entry: RequestEntry) => entry.request),
-    tap((entry: RequestEntry) => console.log(entry)),
     flatMap((request: RestRequest) => {
       let body;
       if (isNotEmpty(request.body)) {